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
    tar -xvf $p.tar.gz
40
    tar -xvf $p.tar.gz
41
    
41
    
42
    # Make the Arch packages
42
    # Make the Arch packages
43
    if [-d "$p"]; then
43
    if [[ -d "$p" ]]; then
44
        cd $p
44
        cd $p
45
        makepkg --config ../../makepkg64.conf && mv *.pkg.tar.xz ../../x86_64
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
        cd ..
47
        cd ..
48
    fi
48
    fi
49
done
49
done