Skip to content

Commit 2e3cc42

Browse files
author
Christoph Weiss
committed
Asm2Cfg: Add shell script for easy executing
1 parent d23cca8 commit 2e3cc42

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

asm2cfg

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
# SPDX-License-Identifier: GTDGmbH
4+
# Copyright 2023 by GTD GmbH.
5+
6+
dir="$(dirname "$(readlink -f "$0")")"
7+
cd $dir
8+
export PATH=$dir/bin:$PATH
9+
if [ -d "venv" ]; then
10+
. venv/bin/activate
11+
fi
12+
python3 -m ocgraph.__main__ "$@"

0 commit comments

Comments
 (0)