Skip to content

Commit

Permalink
Remove duplicated slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillerDragon committed Oct 12, 2024
1 parent 520bcd0 commit ae7188c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ function git_pull_script_dir() {
cd "$SCRIPT_ROOT" || exit 1
if [[ -d "$dir" ]] && [[ -d "$dir"/.git ]]
then
log "updating $dir ..."
log "updating $dir/ ..."
cd "$dir" || exit 1
git_save_pull
fi
Expand All @@ -673,10 +673,10 @@ function git_pull_script_dir() {
}

function update_configs() {
git_pull_script_dir patches/
git_pull_script_dir cfg/
git_pull_script_dir votes/
git_pull_script_dir cnf/
git_pull_script_dir patches
git_pull_script_dir cfg
git_pull_script_dir votes
git_pull_script_dir cnf
cd "$SCRIPT_ROOT" || exit 1
local maps_dir
for maps_dir in maps maps7
Expand Down

0 comments on commit ae7188c

Please sign in to comment.