summaryrefslogtreecommitdiff
path: root/misc/vm
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@figma.com>2019-02-03 01:29:56 +0300
committerRasmus Andersson <rasmus@figma.com>2019-02-03 01:29:56 +0300
commit5a5be63d6e59d5c437b270a5522b370ba845bf39 (patch)
tree46a9027b80e26e5ac49a8dabac3f0867e200e9a2 /misc/vm
parenta5cf88e6591bfc72b34d4c898d8d567f0032a80b (diff)
downloadinter-5a5be63d6e59d5c437b270a5522b370ba845bf39.tar.xz
The Great Rename to "Inter"
Diffstat (limited to 'misc/vm')
-rwxr-xr-xmisc/vm6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/vm b/misc/vm
index cea5e8687..2ccbe6e38 100755
--- a/misc/vm
+++ b/misc/vm
@@ -1,7 +1,7 @@
#!/bin/bash -e
#
# Invokes provided arguments in a prebuilt docker image that contains
-# the Inter UI toolchain.
+# the Inter toolchain.
#
cd "$(dirname "$0")/.."
@@ -10,10 +10,10 @@ if [[ "$1" == "--no-tty" ]]; then
RUN_ARGS=-i
shift
elif [[ "$1" == "-h" ]] || [[ "$1" == "--help" ]]; then
- echo "Run Inter UI build environment virtual machine using docker." >&2
+ echo "Run Inter build environment virtual machine using docker." >&2
echo "usage: $0 [--no-tty] [<arg> ...]" >&2
echo "--no-tty Do not run with TTY input device emulation (useful for scripting)" >&2
exit 1
fi
-docker run --rm $RUN_ARGS -v "$PWD:/host" rsms/inter-ui-build:latest "$@"
+docker run --rm $RUN_ARGS -v "$PWD:/host" rsms/inter-build:latest "$@"