diff options
author | Hisham <hisham@gobolinux.org> | 2016-10-30 23:32:30 -0200 |
---|---|---|
committer | Hisham <hisham@gobolinux.org> | 2016-10-30 23:32:30 -0200 |
commit | 27be765c4a846c0d4e970e154b29cbab1a833738 (patch) | |
tree | 1436b7eed4dc61a8b9df0cfed512b477d9a8f8ac /makedist | |
parent | ba1ba4be6e0ecc6936c49fae38c71e22250ceb65 (diff) | |
parent | f8bd89d27323403dd9de9772a7974b439b37b29d (diff) | |
download | luarocks-27be765c4a846c0d4e970e154b29cbab1a833738.tar.gz luarocks-27be765c4a846c0d4e970e154b29cbab1a833738.tar.bz2 luarocks-27be765c4a846c0d4e970e154b29cbab1a833738.zip |
Merge branch 'new-cmd-dir'
Diffstat (limited to 'makedist')
-rwxr-xr-x | makedist | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -20,9 +20,9 @@ grep -q "\"$1\"" rockspec || { | |||
20 | exit 1 | 20 | exit 1 |
21 | } | 21 | } |
22 | 22 | ||
23 | grep -q "program_version = \"$1\"" src/luarocks/cfg.lua || { | 23 | grep -q "program_version = \"$1\"" src/luarocks/core/cfg.lua || { |
24 | echo | 24 | echo |
25 | echo "program_version in src/luarocks/cfg.lua is incorrect. Please fix it." | 25 | echo "program_version in src/luarocks/core/cfg.lua is incorrect. Please fix it." |
26 | exit 1 | 26 | exit 1 |
27 | } | 27 | } |
28 | 28 | ||
@@ -41,9 +41,9 @@ grep -q "LUAROCKS_VER: $1" appveyor.yml || { | |||
41 | # e.g. if $1 is "2.3.0", $program_series is "2.3" | 41 | # e.g. if $1 is "2.3.0", $program_series is "2.3" |
42 | program_series=${1%.*} | 42 | program_series=${1%.*} |
43 | 43 | ||
44 | grep -q "program_series = \"$program_series\"" src/luarocks/cfg.lua || { | 44 | grep -q "program_series = \"$program_series\"" src/luarocks/core/cfg.lua || { |
45 | echo | 45 | echo |
46 | echo "program_series in src/luarocks/cfg.lua is incorrect. Please fix it." | 46 | echo "program_series in src/luarocks/core/cfg.lua is incorrect. Please fix it." |
47 | exit 1 | 47 | exit 1 |
48 | } | 48 | } |
49 | 49 | ||