diff options
| author | ruki <[email protected]> | 2019-12-03 14:42:51 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-12-03 14:42:51 +0800 |
| commit | 3e4ca8f5c05c297eface6fbff664f7aa991f6719 (patch) | |
| tree | 623d10f0ff8c6e94dcdd32b27dadce12ca31520a /xmake/core/base | |
| parent | 1db0db6a90a231423e03c79d0f09b7bdd4bd7099 (diff) | |
| parent | 54ba9a0faf46957c3da37366119e0dab52fc02cc (diff) | |
Merge pull request #633 from OpportunityLiu/dev
fix typo
Diffstat (limited to 'xmake/core/base')
| -rw-r--r-- | xmake/core/base/option.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/option.lua b/xmake/core/base/option.lua index 1aa4a825c..029a252af 100644 --- a/xmake/core/base/option.lua +++ b/xmake/core/base/option.lua @@ -803,8 +803,8 @@ end -- show update tips function option.show_update_tips() - -- show lastest version - local versionfile = path.join(os.tmpdir(), "lastest_version") + -- show latest version + local versionfile = path.join(os.tmpdir(), "latest_version") if os.isfile(versionfile) then local versioninfo = io.load(versionfile) if versioninfo and versioninfo.version and semver.compare(versioninfo.version, xmake._VERSION_SHORT) > 0 then |
