1c5658f294
Summary: Freeze python's neo4j driver version. Add multiple transactions example in C#. Update Python example to 1.5.0 Neo4j driver. Reviewers: mferencevic, buda, mislav.bradac Reviewed By: mislav.bradac Subscribers: dgleich, pullbot Differential Revision: https://phabricator.memgraph.io/D949
22 lines
310 B
Bash
Executable File
22 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd () {
|
|
command pushd "$@" > /dev/null
|
|
}
|
|
|
|
popd () {
|
|
command popd "$@" > /dev/null
|
|
}
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR
|
|
|
|
for i in *; do
|
|
if [ ! -d $i ]; then continue; fi
|
|
pushd $i
|
|
echo "Running: $i"
|
|
./run.sh || exit 1
|
|
echo
|
|
popd
|
|
done
|