summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2020-07-12 00:15:14 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2020-07-12 00:15:14 (EDT)
commitbb0a1e20b661fee87bcfb7bac945b08516f07fa7 (patch)
tree18c9227349f877c082d648b75dddcb294d4a8bf8
parent5c8b4a8ace8538138f8daab29c6dd46f96fae618 (diff)
ppt-mkpkgs: Fix syntax error
-rw-r--r--src/2/ppt-mkpkgs2
-rw-r--r--src/3/ppt-mkpkgs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/2/ppt-mkpkgs b/src/2/ppt-mkpkgs
index 04fb541..27cc483 100644
--- a/src/2/ppt-mkpkgs
+++ b/src/2/ppt-mkpkgs
@@ -105,7 +105,7 @@ main()
{
PLAT="$(sed '1{s/^config-\([^ ][^ ]*\) (.*$/\1/;};1!q;' changelog)"
- if ! [ -e 'substvars' ];
+ if ! [ -e 'substvars' ]; then
MAKE_SUBSTVARS=true
printf '# Generated by ppt-mkpkgs. DO EDIT.\n' >'substvars'
fi
diff --git a/src/3/ppt-mkpkgs b/src/3/ppt-mkpkgs
index 2cb1908..d69fb2a 100644
--- a/src/3/ppt-mkpkgs
+++ b/src/3/ppt-mkpkgs
@@ -107,7 +107,7 @@ main()
{
PLAT="$(sed '1{s/^config-\([^ ][^ ]*\) (.*$/\1/;};1!q;' changelog)"
- if ! [ -e 'substvars' ];
+ if ! [ -e 'substvars' ]; then
MAKE_SUBSTVARS=true
printf '# Generated by ppt-mkpkgs. DO EDIT.\n' >'substvars'
fi