mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-23 03:06:55 -04:00
skip brew build in linux and debian build on mac
This commit is contained in:
parent
e90cf05141
commit
db1f9b759e
3 changed files with 18 additions and 3 deletions
13
bin/build_brew.sh
Normal file → Executable file
13
bin/build_brew.sh
Normal file → Executable file
|
@ -12,11 +12,18 @@ IFS=$'\n'
|
|||
|
||||
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
|
||||
|
||||
|
||||
CURRENT_PLAFORM="$(uname)"
|
||||
REQUIRED_PLATFORM="Darwin"
|
||||
if [[ "$CURRENT_PLAFORM" != "$REQUIRED_PLATFORM" ]]; then
|
||||
echo "[!] Skipping the Homebrew package build on $CURRENT_PLAFORM (it can only be run on $REQUIRED_PLATFORM)."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
||||
cd "$REPO_DIR/brew_dist"
|
||||
|
||||
|
||||
# make sure archivebox.rb is up-to-date with the dependencies
|
||||
|
||||
echo "[+] Building bottle"
|
||||
echo "[+] Building Homebrew bottle"
|
||||
brew install --build-bottle ./archivebox.rb
|
||||
brew bottle archivebox
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue