We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c2033 commit 36d3800Copy full SHA for 36d3800
build.sh
@@ -35,7 +35,8 @@ function build {
35
36
(cd $buildpath && tar cfz ./gh-ost-binary-${osshort}-${GOARCH}-${timestamp}.tar.gz $target)
37
38
- if [ "$GOOS" == "linux" ] ; then
+ # build RPM and deb for Linux, x86-64 only
39
+ if [ "$GOOS" == "linux" ] && [ "$GOARCH" == "amd64" ] ; then
40
echo "Creating Distro full packages"
41
builddir=$(setuptree)
42
cp $buildpath/$target $builddir/gh-ost/usr/bin
0 commit comments