You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
239 B
12 lines
239 B
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Install Node packages
|
||
|
pnpm install
|
||
|
|
||
|
# Copy in skeleton configuration if there is no existing configuration
|
||
|
if [ ! -d "config/" ]; then
|
||
|
echo "Adding skeleton config"
|
||
|
mkdir config/
|
||
|
cp -r src/skeleton/* config
|
||
|
fi
|