浏览代码

Update build.sh

syntax hotfix
Nikita K 10 年之前
父节点
当前提交
78f7b0413a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      build.sh

+ 2 - 2
build.sh

@ -40,10 +40,10 @@ do
40 40
    tar -xvf $p.tar.gz
41 41
    
42 42
    # Make the Arch packages
43
    if [-d "$p"]; then
43
    if [[ -d "$p" ]]; then
44 44
        cd $p
45 45
        makepkg --config ../../makepkg64.conf && mv *.pkg.tar.xz ../../x86_64
46
        linux32 makepkg --config ../../makepkg32.conf && mv *.pkg.tar.xz ../../i686
46
        #linux32 makepkg --config ../../makepkg32.conf && mv *.pkg.tar.xz ../../i686
47 47
        cd ..
48 48
    fi
49 49
done