summaryrefslogtreecommitdiff
path: root/xmake/core/project/cache.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-09-25 00:33:07 +0800
committerruki <[email protected]>2020-09-25 00:33:07 +0800
commit90af4956738036172984f068502624bbc515cae7 (patch)
tree7cd7177becaf98e676ae8eaa478f042e14505d3a /xmake/core/project/cache.lua
parent700f08a7bae11c22295f884610f98b7b99eb1790 (diff)
fix trailing white-space
Diffstat (limited to 'xmake/core/project/cache.lua')
-rw-r--r--xmake/core/project/cache.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmake/core/project/cache.lua b/xmake/core/project/cache.lua
index f2f89931e..6aeb9d716 100644
--- a/xmake/core/project/cache.lua
+++ b/xmake/core/project/cache.lua
@@ -11,7 +11,7 @@
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
---
+--
-- Copyright (C) 2015-2020, TBOOX Open Source Group.
--
-- @author ruki
@@ -69,10 +69,10 @@ function cache._instance(scopename)
cachepath = (cachepath:gsub("^local%/", path.join(config.directory(), "cache") .. "/"))
cachepath = (cachepath:gsub("^global%/", path.join(global.directory(), "cache") .. "/"))
- -- save the cache path
+ -- save the cache path
instance._CACHEPATH = cachepath
- -- load the cache data
+ -- load the cache data
local results = io.load(cachepath)
if results then
instance._CACHEDATA = results
@@ -104,16 +104,16 @@ end
-- flush to cache file
function cache:flush()
- -- flush the version
+ -- flush the version
self._CACHEDATA.__version = xmake._VERSION_SHORT
-- memory cache? ignore it directly
if not self._CACHEPATH then
- return
+ return
end
-- save to file
- local ok, errors = io.save(self._CACHEPATH, self._CACHEDATA)
+ local ok, errors = io.save(self._CACHEPATH, self._CACHEDATA)
if not ok then
os.raise(errors)
end