10 lines
263 B
Bash
Executable file
10 lines
263 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e # Exit immediately if a command exits with a non-zero status.
|
|
set -u # Treat unset variables as an error.
|
|
|
|
# Override what is set by the baseimage and do not set the variable. Needed for
|
|
# WebGL support.
|
|
exit 100
|
|
|
|
# vim:ft=sh:ts=4:sw=4:et:sts=4
|