Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
oh-my-fish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
oh-my-fish
Commits
d3b40075
Commit
d3b40075
authored
May 31, 2015
by
Bruno Pinto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
handling failures on git clone
parent
bcd032de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
5 deletions
+25
-5
plugins/omf/omf.packages.fish
plugins/omf/omf.packages.fish
+11
-1
plugins/omf/omf.packages.install.fish
plugins/omf/omf.packages.install.fish
+14
-4
No files found.
plugins/omf/omf.packages.fish
View file @
d3b40075
...
...
@@ -60,7 +60,17 @@ function omf.packages.report.updating -e omf_package_updating
omf.log -n white "Updating $argv... "
end
function omf.packages.report.failed -e omf_package_install_failed -e omf_package_update_failed
omf.log red "✖"
set_color yellow
cat /tmp/oh-my-fish.clone.log
set_color normal
set __omf_packages_modified (expr $__omf_packages_modified + 1)
end
function omf.packages.report.finished -e omf_package_installed -e omf_package_updated
omf.log green
"√
"
omf.log green
"✔
"
set __omf_packages_modified (expr $__omf_packages_modified + 1)
end
plugins/omf/omf.packages.install.fish
View file @
d3b40075
...
...
@@ -15,16 +15,26 @@ function omf.packages.install --argument-names type name -d "Install a plugin or
# Plugin is already installed. Skipping.
else
emit omf_package_installing $name
git clone "https://github.com/oh-my-fish/plugin-$name" $fish_path/plugins/$name ^ /dev/null
emit omf_package_installed $name
git clone --quiet "https://github.com/oh-my-fish/plugin-$name" $fish_path/plugins/$name ^ /tmp/oh-my-fish.clone.log
if [ $status -eq 0 ]
emit omf_package_installed $name
else
emit omf_package_install_failed $name
end
end
case '--theme'
if [ -e $fish_path/themes/$name -o -e $fish_custom/themes/$name ]
# Theme is already installed. Skipping.
else
emit omf_package_installing $name
git clone "https://github.com/oh-my-fish/theme-$name" $fish_path/themes/$name ^ /dev/null
emit omf_package_installed $name
git clone --quiet "https://github.com/oh-my-fish/theme-$name" $fish_path/themes/$name ^ /tmp/oh-my-fish.clone.log
if [ $status -eq 0 ]
emit omf_package_installed $name
else
emit omf_package_install_failed $name
end
end
case '*'
omf.log red 'Unknown option'
...
...
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