mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-15 02:48:06 +03:00
18 lines
221 B
Bash
Executable File
18 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
cd pkg/interface/chat
|
|
gulp bundle-prod &
|
|
cd ../launch
|
|
gulp bundle-prod &
|
|
cd ../clock
|
|
gulp bundle-prod &
|
|
cd ../publish
|
|
gulp bundle-prod &
|
|
cd ../weather
|
|
gulp bundle-prod &
|
|
cd ../../../
|
|
|
|
set +x
|