Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/src/lib/repo/switch.sh
diff options
context:
space:
mode:
authorMorten Linderud <foxboron@archlinux.org>2024-02-10 12:46:08 +0100
committerLevente Polyak <anthraxx@archlinux.org>2024-03-09 00:49:24 +0100
commit40f476c649e2c1938c391575f4339c6f50b97e7c (patch)
treefc016d7ab27cfaf0e9a70fdd7a9e57250b198513 /src/lib/repo/switch.sh
parent509dd24bdcd6c45bd86937fcd1de6fd1fa510441 (diff)
fix(pkgctl): skip path arguments that are not directories
Several subcommands accept multiple paths in a way that passing a wildcard is an expected use case. Previously this wasn't possible if the main directory contained any text files or scripts. Fix this by skipping none directory paths for such commands. Component: pkgctl Signed-off-by: Morten Linderud <foxboron@archlinux.org>
Diffstat (limited to 'src/lib/repo/switch.sh')
-rw-r--r--src/lib/repo/switch.sh13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/lib/repo/switch.sh b/src/lib/repo/switch.sh
index f411ac2..d8ba9df 100644
--- a/src/lib/repo/switch.sh
+++ b/src/lib/repo/switch.sh
@@ -101,16 +101,21 @@ pkgctl_repo_switch() {
fi
for path in "${paths[@]}"; do
- if ! realpath=$(realpath -e -- "${path}"); then
+ # resolve symlink for basename
+ if ! realpath=$(realpath --canonicalize-existing -- "${path}"); then
die "No such directory: ${path}"
fi
- pkgbase=$(basename "${realpath}")
-
- if [[ ! -d "${path}/.git" ]]; then
+ # skip paths that are not directories
+ if [[ ! -d "${realpath}" ]]; then
+ continue
+ fi
+ # skip paths that are not git repositories
+ if [[ ! -d "${realpath}/.git" ]]; then
error "Not a Git repository: ${path}"
continue
fi
+ pkgbase=$(basename "${realpath}")
if ! git -C "${path}" checkout "${GIT_CHECKOUT_OPTIONS[@]}" "${GIT_REF}"; then
die "Failed to switch ${pkgbase} to version ${VERSION}"
fi