Skip to content

Commit

Permalink
Fix duplicate '/' in path
Browse files Browse the repository at this point in the history
  • Loading branch information
Slinet6056 committed Sep 6, 2024
1 parent 75cd854 commit cfe882d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ chown -R builder:builder "$repodir"
# Update the package repository
sudo -u builder bash <<EOF
package_file=\$(basename "$pkgbuild_dir"/*.pkg.tar.zst)
cp "$pkgbuild_dir"/\$package_file "$pkgbuild_dir"/\$package_file.sig "$repodir"
cp "$pkgbuild_dir/\$package_file" "$pkgbuild_dir/\$package_file.sig" "$repodir/"
cd "$repodir"
repo-add --verify --sign "$repo_name.db.tar.gz" \$package_file
repo-add --verify --sign "$repo_name.db.tar.gz" "\$package_file"
EOF

0 comments on commit cfe882d

Please sign in to comment.