mirror of
https://codeberg.org/icewind/attic-action.git
synced 2026-06-03 17:44:07 +02:00
Merge pull request #94 from avdv/patch-1
Allow pushFilter regex to start with a dash
This commit is contained in:
commit
006b9d523c
1 changed files with 1 additions and 1 deletions
2
dist/main/push-paths.sh
vendored
2
dist/main/push-paths.sh
vendored
|
|
@ -4,7 +4,7 @@ set -euo pipefail
|
|||
PATHS=$(comm -13 <(sort /tmp/store-path-pre-build) <("$(dirname "$0")"/list-nix-store.sh))
|
||||
|
||||
if [[ $3 != "" ]]; then
|
||||
PATHS=$(echo "$PATHS" | grep -vE "$3")
|
||||
PATHS=$(echo "$PATHS" | grep -vEe "$3")
|
||||
fi
|
||||
|
||||
echo "$PATHS" | "$1" push -j8 "$2"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue