Skip to content

Commit 171e904

Browse files
committed
Made changes to make it compatible with mac
1 parent 84ca8e3 commit 171e904

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/buckytools/prepare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
1414
echo "> Cloning source repo ${URL} ..."
1515
git clone ${URL} "${PACKAGE}-${VERSION}"
1616
echo "> Creating ${PACKAGE}/${FILE} ..."
17-
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
17+
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
1818
echo "> Deleting temp folder ..."
1919
rm -rf "${PACKAGE}-${VERSION}"
2020
fi

packages/carbonapi/prepare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
2222
GOPATH=$(pwd) go get -tags cairo -d
2323
popd
2424
echo "> Creating ${PACKAGE}/${FILE} ..."
25-
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
25+
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
2626
echo "> Deleting temp folder ..."
2727
rm -rf "${PACKAGE}-${VERSION}"
2828
fi

packages/carbonserver/prepare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
2121
GOPATH=$(pwd) go get -d
2222
popd
2323
echo "> Creating ${PACKAGE}/${FILE} ..."
24-
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
24+
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
2525
echo "> Deleting temp folder ..."
2626
rm -rf "${PACKAGE}-${VERSION}"
2727
fi

packages/carbonzipper/prepare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
2121
GOPATH=$(pwd) go get -d
2222
popd
2323
echo "> Creating ${PACKAGE}/${FILE} ..."
24-
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
24+
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
2525
echo "> Deleting temp folder ..."
2626
rm -rf "${PACKAGE}-${VERSION}"
2727
fi

packages/go-carbon/prepare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
2020
make submodules
2121
popd
2222
echo "> Creating ${PACKAGE}/${FILE} ..."
23-
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
23+
tar --exclude .git --exclude .gitmodules --exclude .gitignore -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
2424
echo "> Deleting temp folder ..."
2525
rm -rf "${PACKAGE}-${VERSION}"
2626
fi

packages/statsrelay/prepare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [ ! -s "${PACKAGE}/${FILE}" ]; then
1818
git checkout ${VERSION}
1919
popd
2020
echo "> Creating ${PACKAGE}/${FILE} ..."
21-
tar --exclude-vcs --exclude .git --exclude .gitmodules --exclude .gitignore --exclude='./test/' -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
21+
tar --exclude .git --exclude .gitmodules --exclude .gitignore --exclude='./test/' -cvf - "${PACKAGE}-${VERSION}" | gzip > ${PACKAGE}/${FILE}
2222
echo "> Deleting temp folder ..."
2323
rm -rf "${PACKAGE}-${VERSION}"
2424
fi

0 commit comments

Comments
 (0)