Skip to content

Commit e47f42c

Browse files
committed
feat: fix messages
1 parent 4d1431f commit e47f42c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

bin/sparkdock.macos

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,12 @@ if [ "$1" != "skip-update" ] ; then
113113

114114
# Check for local changes (both tracked and untracked)
115115
if ! git diff --quiet HEAD || [ -n "$(git ls-files --others --exclude-standard)" ]; then
116-
print_warning "You have local changes that will be stashed."
116+
print_warning "You have local changes that will be stashed, to recover your work later, run 'git stash pop'."
117117
echo ""
118118
if ! git stash push -u -m "sparkdock-update auto-stash"; then
119119
print_error "Failed to stash changes. Aborting update."
120120
exit 1
121121
fi
122-
print_success "To recover your work later, run 'git stash pop'."
123122
update_actions_performed=true
124123
fi
125124

0 commit comments

Comments
 (0)