Skip to content

Commit 5ee8857

Browse files
committed
Fix syntax
1 parent 7431d10 commit 5ee8857

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/main/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7973,7 +7973,7 @@ async function registerPostBuildHook(cachixBin, daemonDir) {
79737973
done | xargs
79747974
}
79757975
7976-
if [[ -n $PUSH_FILTER ]]; then
7976+
if [ -n "$PUSH_FILTER" ]; then
79777977
OUT_PATHS=$(filterPaths $PUSH_FILTER "$OUT_PATHS")
79787978
fi
79797979

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ async function registerPostBuildHook(cachixBin: string, daemonDir: string) {
292292
done | xargs
293293
}
294294
295-
if [[ -n $PUSH_FILTER ]]; then
295+
if [ -n "$PUSH_FILTER" ]; then
296296
OUT_PATHS=$(filterPaths $PUSH_FILTER "$OUT_PATHS")
297297
fi
298298

0 commit comments

Comments
 (0)