Skip to content

Commit 06006f4

Browse files
committed
Fix ivory-example run script - was setting IVORY variable twice
1 parent 06f4b49 commit 06006f4

File tree

1 file changed

+3
-3
lines changed
  • ivory-example/bin

1 file changed

+3
-3
lines changed

ivory-example/bin/run

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/sh -eux
22

33
TARGET=${1:-/tmp/test-$RANDOM}
4-
IVORY=$TARGET/ivory
4+
REPO=$TARGET/ivory
55
DICT=$TARGET/dictionary
66
FACTS=$TARGET/facts
77
FLAGS=$TARGET/flags
88

99
IVORY=$(dirname $0)/ivory
1010
$IVORY generate-dictionary -n 5 -f 100 -o $TARGET
1111
$IVORY generate-facts -d $DICT -f $FLAGS -n 1000 -s 2012-01-01 -e 2012-02-01 -o $FACTS
12-
$IVORY create-repository -p $IVORY
13-
$IVORY import-dictionary -r $IVORY -p $DICT -n "example"
12+
$IVORY create-repository -p $REPO
13+
$IVORY import-dictionary -r $REPO -p $DICT -n "example"

0 commit comments

Comments
 (0)