mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2025-12-11 20:15:30 +01:00
13 lines
166 B
Bash
Executable File
13 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Installing Core..."
|
|
cd Core
|
|
npm install
|
|
|
|
echo "Installing Editor..."
|
|
cd ../Editor
|
|
npm install
|
|
|
|
echo "Installing Sandbox..."
|
|
cd ../Sandbox
|
|
npm install |