9 lines
142 B
Bash
Executable File
9 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
node ./scripts/glitch-components.mjs build "$@"
|