Skip to content

Commit

Permalink
ci(aur): fix print and surround path with double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK authored Feb 11, 2024
1 parent 7f94d45 commit ad75919
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publishToAUR.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ echo "AUR PUBLISHER: Clone the AUR repository in $aur_repo_dir"
git clone -v "https://aur.archlinux.org/${pkgname}.git" $aur_repo_dir

echo "AUR PUBLISHER: Make $aur_repo_dir writeable"
chmod 777 $aur_repo_dir
chmod 777 "$aur_repo_dir"

echo "AUR PUBLISHER: read the image version to use"
MAKEPKG_IMAGE="$(grep 'FROM danysk/makepkg' < deps-utils/Dockerfile | sed 's/FROM //')"
(
echo "AUR PUBLISHER: switch to %aur_repo_dir"
echo "AUR PUBLISHER: switch to $aur_repo_dir"
cd "$aur_repo_dir"
echo "AUR PUBLISHER: Set up git for $username <$email>"
git config user.name "$username"
Expand Down

0 comments on commit ad75919

Please sign in to comment.