Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Apr 25, 2024
1 parent 7431d10 commit 5ee8857
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7973,7 +7973,7 @@ async function registerPostBuildHook(cachixBin, daemonDir) {
done | xargs
}
if [[ -n $PUSH_FILTER ]]; then
if [ -n "$PUSH_FILTER" ]; then
OUT_PATHS=$(filterPaths $PUSH_FILTER "$OUT_PATHS")
fi
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ async function registerPostBuildHook(cachixBin: string, daemonDir: string) {
done | xargs
}
if [[ -n $PUSH_FILTER ]]; then
if [ -n "$PUSH_FILTER" ]; then
OUT_PATHS=$(filterPaths $PUSH_FILTER "$OUT_PATHS")
fi
Expand Down

0 comments on commit 5ee8857

Please sign in to comment.