summaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-17 09:34:05 +0100
committerJoe Carstairs <me@joeac.net>2026-06-17 09:34:05 +0100
commit3e0def43051f03a6a2e81c81cd4ffe413d86444e (patch)
tree503fb6fe17e04360003f6c0a817ce67a2b117087 /http
parent722a3040237736bb262f7b9e05643eb3bfb21bda (diff)
remove unnecessary continue indices in prune_out
Diffstat (limited to 'http')
-rwxr-xr-xhttp/bin/prune_out4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/bin/prune_out b/http/bin/prune_out
index 1670ffd..c95c2b4 100755
--- a/http/bin/prune_out
+++ b/http/bin/prune_out
@@ -7,13 +7,13 @@ do
rel_path="$(echo "${out}" | cut -c5-)"
if [ -f "public/${rel_path}" ]; then
- continue 2
+ continue
fi
base_rel_path="${rel_path%%.${out_ext}}"
src_path="src/${base_rel_path}.upp${out_ext}"
if [ -f "$src_path" ]; then
- continue 2
+ continue
fi
for layout in $(find share/layouts -name "*.layout.upp${out_ext}"); do