Skip to content

Commit

Permalink
Made changes to make it compatible with mac
Browse files Browse the repository at this point in the history
  • Loading branch information
SuchiSmita-N committed Aug 29, 2018
1 parent 84ca8e3 commit 171e904
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/buckytools/prepare
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
echo "> Cloning source repo ${URL} ..."
git clone ${URL} "${PACKAGE}-${VERSION}"
echo "> Creating ${PACKAGE}/${FILE} ..."
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
echo "> Deleting temp folder ..."
rm -rf "${PACKAGE}-${VERSION}"
fi
2 changes: 1 addition & 1 deletion packages/carbonapi/prepare
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
GOPATH=$(pwd) go get -tags cairo -d
popd
echo "> Creating ${PACKAGE}/${FILE} ..."
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
echo "> Deleting temp folder ..."
rm -rf "${PACKAGE}-${VERSION}"
fi
2 changes: 1 addition & 1 deletion packages/carbonserver/prepare
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
GOPATH=$(pwd) go get -d
popd
echo "> Creating ${PACKAGE}/${FILE} ..."
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
echo "> Deleting temp folder ..."
rm -rf "${PACKAGE}-${VERSION}"
fi
2 changes: 1 addition & 1 deletion packages/carbonzipper/prepare
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
GOPATH=$(pwd) go get -d
popd
echo "> Creating ${PACKAGE}/${FILE} ..."
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
echo "> Deleting temp folder ..."
rm -rf "${PACKAGE}-${VERSION}"
fi
2 changes: 1 addition & 1 deletion packages/go-carbon/prepare
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
make submodules
popd
echo "> Creating ${PACKAGE}/${FILE} ..."
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
echo "> Deleting temp folder ..."
rm -rf "${PACKAGE}-${VERSION}"
fi
2 changes: 1 addition & 1 deletion packages/statsrelay/prepare
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
git checkout ${VERSION}
popd
echo "> Creating ${PACKAGE}/${FILE} ..."
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore --exclude='./test/' -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
tar --exclude .git --exclude .gitmodules --exclude .gitignore --exclude='./test/' -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
echo "> Deleting temp folder ..."
rm -rf "${PACKAGE}-${VERSION}"
fi

0 comments on commit 171e904

Please sign in to comment.