diff options
| author | Linus Nordberg <linus@nordu.net> | 2015-06-10 16:37:18 +0200 | 
|---|---|---|
| committer | Linus Nordberg <linus@nordu.net> | 2015-06-10 16:37:18 +0200 | 
| commit | 70c27d2ec55f046b6ce90ffc6c54393122f2e3e3 (patch) | |
| tree | 83d0fb58e5e83c8de8c74239bd70903d26485908 | |
| parent | 0ebd136ca0ade835a8e82f3a4af0df2bdb36c971 (diff) | |
verifycert depends on plop too.
| -rwxr-xr-x | catlfish-dev/start.sh | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/catlfish-dev/start.sh b/catlfish-dev/start.sh index 3a982fb..bef885e 100755 --- a/catlfish-dev/start.sh +++ b/catlfish-dev/start.sh @@ -31,11 +31,14 @@ case $role in          ;;      merge) -        # Catlfish version is included in filename of archive and -        # filename in that archive. Example: lib/catlfish-0.6.0.ez -        # contains catlfish-0.6.0. +        # Catlfish and plop versions are included in filename of +        # archive file and in the filename within the +        # archive. Example: lib/catlfish-0.6.0.ez contains +        # catlfish-0.6.0.          ver=$(ls $erlbase/lib/catlfish-*.ez | sed 's/.*catlfish-\(.*\)\.ez/\1/1')          ERL_LIBS=$erlbase/lib/catlfish-${ver}.ez/catlfish-${ver} +        ver=$(ls $erlbase/lib/plop-*.ez | sed 's/.*plop-\(.*\)\.ez/\1/1') +        ERL_LIBS=$ERL_LIBS:$erlbase/lib/plop-${ver}.ez/plop-${ver}/ebin          ERL_LIBS=$ERL_LIBS:$erlbase/lib/lager-2.1.1.ez/lager-2.1.1          export ERL_LIBS | 
