| author | nipkow | 
| Fri, 07 Feb 2025 21:27:11 +0100 | |
| changeset 82102 | 15261d78d7b5 | 
| parent 75285 | 2b64d5657592 | 
| permissions | -rwxr-xr-x | 
| 75283 
574fb6486c57
support Node.js as well, reusing the engine from Electron/VSCodium;
 wenzelm parents: diff
changeset | 1 | #!/usr/bin/env bash | 
| 
574fb6486c57
support Node.js as well, reusing the engine from Electron/VSCodium;
 wenzelm parents: diff
changeset | 2 | # | 
| 
574fb6486c57
support Node.js as well, reusing the engine from Electron/VSCodium;
 wenzelm parents: diff
changeset | 3 | # Author: Makarius | 
| 
574fb6486c57
support Node.js as well, reusing the engine from Electron/VSCodium;
 wenzelm parents: diff
changeset | 4 | # | 
| 75284 | 5 | # DESCRIPTION: run the Node.js framework within the Isabelle environment | 
| 75283 
574fb6486c57
support Node.js as well, reusing the engine from Electron/VSCodium;
 wenzelm parents: diff
changeset | 6 | |
| 75285 | 7 | if [ -z "$ISABELLE_VSCODIUM_ELECTRON" ]; then | 
| 8 | echo '*** Undefined $ISABELLE_VSCODIUM_ELECTRON: missing "vscodium" component' | |
| 9 | exit 2 | |
| 10 | else | |
| 11 | export ELECTRON_RUN_AS_NODE=1 | |
| 12 | exec "$ISABELLE_VSCODIUM_ELECTRON" "$@" | |
| 13 | fi |