mirror of
https://github.com/sripwoud/ts-template.git
synced 2026-01-10 14:07:58 -05:00
diff --git a/setup b/setup
index 16740b6..e6d0d21 100755
--- a/setup
+++ b/setup
@@ -10,7 +10,7 @@ main() {
curl -s https://raw.githubusercontent.com/sripwoud/agnostic-template/refs/heads/main/setup | sh
bun i
- log "✅ Installed node deps"
+ log "Installed node deps"
}
main
17 lines
204 B
Bash
Executable File
17 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
log() {
|
|
printf "%b\n" "$1"
|
|
}
|
|
|
|
main() {
|
|
curl -s https://raw.githubusercontent.com/sripwoud/agnostic-template/refs/heads/main/setup | sh
|
|
|
|
bun i
|
|
log "Installed node deps"
|
|
}
|
|
|
|
main
|