Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor Update and Bug Fix #63

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/bash/functions
Original file line number Diff line number Diff line change
@@ -123,7 +123,7 @@ gacp() {
# Check if the upstream origin should be set
if $set_upstream; then
# Push the changes to the remote repository and set the upstream branch to the current branch
(git push --set-upstream origin "$(git rev-parse --abbrev-ref HEAD)" && ksmg "Push and set upstream completed.") || emsg "Failed to push changes and set upstream."
(git push --set-upstream origin "$(git rev-parse --abbrev-ref HEAD)" && kmsg "Push and set upstream completed.") || emsg "Failed to push changes and set upstream."
else
# Push the changes to the remote repository
(git push && kmsg "Push completed.") || emsg "Failed to push changes."
@@ -163,7 +163,7 @@ make_default_directories() {
fi
}
# shellcheck disable=SC3030
directories=( Downloads bin lib src pysrc )
directories=( Downloads bin lib src )
# shellcheck disable=SC3054
for dir in "${directories[@]}"; do
makedir "$dir"