Skip to content
Snippets Groups Projects
Commit 1797780e authored by David Byers's avatar David Byers
Browse files

Enable debug build

parent bd9755f3
No related branches found
No related tags found
1 merge request!8Beta
Pipeline #33114 passed
...@@ -21,9 +21,11 @@ for target in "${TARGETS[@]}" ; do ...@@ -21,9 +21,11 @@ for target in "${TARGETS[@]}" ; do
cp -r "$sourcedir"/* "$targetdir" cp -r "$sourcedir"/* "$targetdir"
rm "$targetdir"/manifest.part.json rm "$targetdir"/manifest.part.json
for file in "$targetdir"/*.js ; do if [ -z "${DEBUG:-}" ] ; then
sed -i -e '/\/\/ DEBUG$/d' "$file" for file in "$targetdir"/*.js ; do
done sed -i -e '/\/\/ DEBUG$/d' "$file"
done
fi
python3 "$BASEDIR/scripts/makemanifest.py" \ python3 "$BASEDIR/scripts/makemanifest.py" \
"$SHAREDDIR/manifest.part.json" \ "$SHAREDDIR/manifest.part.json" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment