Skip to content

Commit

Permalink
Added obsidianup and obsidiandown scripts to reference up.sh and down…
Browse files Browse the repository at this point in the history
….sh from anywhere.
  • Loading branch information
mcoblenz committed Sep 1, 2019
1 parent 5ed9582 commit 4357098
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bin/obsidiandown
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash

bin_dir="$(cd "$(dirname $BASH_SOURCE)"; pwd)"
root_dir="$bin_dir/.."
export OBSIDIAN_COMPILER_DIR="$root_dir"

network_framework="${root_dir}/network-framework"

cd ${network_framework}

${root_dir}/network-framework/down.sh
13 changes: 13 additions & 0 deletions bin/obsidianup
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

bin_dir="$(cd "$(dirname $BASH_SOURCE)"; pwd)"
root_dir="$bin_dir/.."
export OBSIDIAN_COMPILER_DIR="$root_dir"

network_framework="${root_dir}/network-framework"

cd ${network_framework}

${root_dir}/network-framework/up.sh $@


0 comments on commit 4357098

Please sign in to comment.