Browse Source

Update build.sh

syntax hotfix
Nikita K 10 years ago
parent
commit
78f7b0413a
1 changed files with 2 additions and 2 deletions
  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