This currently breaks the local usage because of the different appIds: <name>.open.aragonpm.eth vs. <name>.aragonpm.eth (local)
23 lines
337 B
Bash
Executable File
23 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rootDir=`pwd`
|
|
|
|
echo "## Kredits app bootstrap"
|
|
echo ""
|
|
echo "Setting up each aragon app in ./apps"
|
|
echo "a new app version will be deployed"
|
|
echo "----"
|
|
|
|
for dir in ./apps/*/; do
|
|
set -x
|
|
cd $dir
|
|
npm install
|
|
aragon apm publish major
|
|
cd $rootDir
|
|
set +x
|
|
done
|
|
|
|
echo "Done, new versions of all apps deployed"
|