Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
FuryLion Fastlane plugin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vadim Vlasov
FuryLion Fastlane plugin
Commits
d18024f1
Commit
d18024f1
authored
Aug 30, 2024
by
Vadim Vlasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes
parent
62976b9a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
lib/fastlane/plugin/furylion/actions/restore_cache.rb
lib/fastlane/plugin/furylion/actions/restore_cache.rb
+2
-2
lib/fastlane/plugin/furylion/actions/try_update_cache.rb
lib/fastlane/plugin/furylion/actions/try_update_cache.rb
+1
-1
lib/fastlane/plugin/furylion/version.rb
lib/fastlane/plugin/furylion/version.rb
+1
-1
No files found.
lib/fastlane/plugin/furylion/actions/restore_cache.rb
View file @
d18024f1
...
...
@@ -16,9 +16,9 @@ module Fastlane
output
=
`rsync -a --delete
#{
cache_storage_path
}
/
#{
directory
}
/`
puts
output
unless
output
.
strip
.
empty?
UI
.
message
(
"Cache restored from
#{
cache_storage_path
}
"
)
UI
.
success
(
"Cache restored from
#{
cache_storage_path
}
"
)
else
UI
.
message
(
"Cache directory not found. Skipping cache restoration."
)
UI
.
message
(
"Cache directory
(
#{
cache_storage_path
}
)
not found. Skipping cache restoration."
)
end
end
...
...
lib/fastlane/plugin/furylion/actions/try_update_cache.rb
View file @
d18024f1
...
...
@@ -21,7 +21,7 @@ module Fastlane
output
=
`rsync -a --delete
#{
directory
}
/
#{
cache_storage_path
}
/`
puts
output
unless
output
.
strip
.
empty?
UI
.
message
(
"Cache saved in
#{
cache_storage_path
}
"
)
UI
.
success
(
"Cache saved in
#{
cache_storage_path
}
"
)
else
UI
.
message
(
"Cache not updated as the branch is not in the allowed update list"
)
end
...
...
lib/fastlane/plugin/furylion/version.rb
View file @
d18024f1
module
Fastlane
module
Furylion
VERSION
=
"1.1.
4
"
VERSION
=
"1.1.
5
"
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment