Commit d18024f1 authored by Vadim Vlasov's avatar Vadim Vlasov

Fixes

parent 62976b9a
...@@ -16,9 +16,9 @@ module Fastlane ...@@ -16,9 +16,9 @@ module Fastlane
output = `rsync -a --delete #{cache_storage_path}/ #{directory}/` output = `rsync -a --delete #{cache_storage_path}/ #{directory}/`
puts output unless output.strip.empty? puts output unless output.strip.empty?
UI.message("Cache restored from #{cache_storage_path}") UI.success("Cache restored from #{cache_storage_path}")
else else
UI.message("Cache directory not found. Skipping cache restoration.") UI.message("Cache directory (#{cache_storage_path}) not found. Skipping cache restoration.")
end end
end end
......
...@@ -21,7 +21,7 @@ module Fastlane ...@@ -21,7 +21,7 @@ module Fastlane
output = `rsync -a --delete #{directory}/ #{cache_storage_path}/` output = `rsync -a --delete #{directory}/ #{cache_storage_path}/`
puts output unless output.strip.empty? puts output unless output.strip.empty?
UI.message("Cache saved in #{cache_storage_path}") UI.success("Cache saved in #{cache_storage_path}")
else else
UI.message("Cache not updated as the branch is not in the allowed update list") UI.message("Cache not updated as the branch is not in the allowed update list")
end end
......
module Fastlane module Fastlane
module Furylion module Furylion
VERSION = "1.1.4" VERSION = "1.1.5"
end end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment