summaryrefslogtreecommitdiff
path: root/2026/submissions/threecoff/clennis/scripts/setup-emsdk.sh
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-08-17 20:14:16 -0400
committerLLLL Colonq <llll@colonq>2026-08-17 20:14:16 -0400
commitde99c5f7636a952025ea13de02bafd25bcb6bdec (patch)
treebe359424af4f6717103e3b667b6529ae5a4b4e6a /2026/submissions/threecoff/clennis/scripts/setup-emsdk.sh
parent4d4d1f24721f27fbf37e1070be6414de130ace61 (diff)
Fix broken
Diffstat (limited to '2026/submissions/threecoff/clennis/scripts/setup-emsdk.sh')
-rw-r--r--2026/submissions/threecoff/clennis/scripts/setup-emsdk.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/2026/submissions/threecoff/clennis/scripts/setup-emsdk.sh b/2026/submissions/threecoff/clennis/scripts/setup-emsdk.sh
deleted file mode 100644
index b711b7f..0000000
--- a/2026/submissions/threecoff/clennis/scripts/setup-emsdk.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-# Install the Emscripten SDK into ./vendor/emsdk (needed only for the web build).
-set -euo pipefail
-
-ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
-EMSDK_DIR="$ROOT/vendor/emsdk"
-
-if [ ! -d "$EMSDK_DIR" ]; then
- echo ">> Cloning emsdk into $EMSDK_DIR"
- git clone --depth 1 https://github.com/emscripten-core/emsdk.git "$EMSDK_DIR"
-fi
-
-cd "$EMSDK_DIR"
-echo ">> Installing latest Emscripten toolchain (large download)..."
-./emsdk install latest
-./emsdk activate latest
-
-echo
-echo ">> Done. Activate it in your shell with:"
-echo " source $EMSDK_DIR/emsdk_env.sh"