aca82fb84b
* Removing submodule * Fixing UI dependency structure. * Merging RS and JS package * Updating release script to push also rs files * fix merge gone wrong * Fixing compilation
12 lines
124 B
Bash
Executable File
12 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# change into main dir
|
|
pushd `dirname $0`
|
|
cd ../../
|
|
|
|
cargo update -p parity-ui-precompiled
|
|
|
|
popd
|
|
exit 0
|