forked from mirror/ObjToSchematic
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 |