From 407384a6650ec01469215e12d07f82502e3df548 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshev Date: Fri, 3 Nov 2023 18:53:20 +0300 Subject: [PATCH] SAIL: Remove unused dist directory --- dist/macos/README.md | 1 - dist/macos/make-bottle | 16 ---------------- dist/macos/reset-tap | 9 --------- dist/macos/upload-bottles | 12 ------------ 4 files changed, 38 deletions(-) delete mode 100644 dist/macos/README.md delete mode 100755 dist/macos/make-bottle delete mode 100755 dist/macos/reset-tap delete mode 100755 dist/macos/upload-bottles diff --git a/dist/macos/README.md b/dist/macos/README.md deleted file mode 100644 index e4fd28b8..00000000 --- a/dist/macos/README.md +++ /dev/null @@ -1 +0,0 @@ -These scripts are intended for developers. Use `brew install HappySeaFox/sail/sail` to install SAIL on macOS. \ No newline at end of file diff --git a/dist/macos/make-bottle b/dist/macos/make-bottle deleted file mode 100755 index 417cc773..00000000 --- a/dist/macos/make-bottle +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -e - -# Update the tap -brew tap HappySeaFox/sail - -# Build errors are faced when SAIL is already installed. Uninstall any previous versions. -brew uninstall sail - -# Make a new bottle -brew test-bot --root-url=https://dl.bintray.com/HappySeaFox/bottles-sail --bintray-org=HappySeaFox \ - --tap=HappySeaFox/sail HappySeaFox/sail/sail - -echo -echo "SUCCESS. Now you can upload the created bottles." -echo "NOTE: Any installed SAIL versions were uninstalled." -echo diff --git a/dist/macos/reset-tap b/dist/macos/reset-tap deleted file mode 100755 index c86fd896..00000000 --- a/dist/macos/reset-tap +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -e - -cat "$(brew --repo HappySeaFox/sail)/Formula/sail.rb" - -git -C "$(brew --repo HappySeaFox/sail)" reset --hard origin/master - -echo -echo "SUCCESS. Now you can copy the 'bottle do' block above and commit it." -echo diff --git a/dist/macos/upload-bottles b/dist/macos/upload-bottles deleted file mode 100755 index 36c6a91e..00000000 --- a/dist/macos/upload-bottles +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -e - -PWD="$(dirname "$0")" - -export HOMEBREW_BINTRAY_USER=HappySeaFox -export HOMEBREW_BINTRAY_KEY="$(cat "$PWD/bintray-key")" - -brew pr-upload --bintray-org="$HOMEBREW_BINTRAY_USER" --root-url=https://dl.bintray.com/HappySeaFox/bottles-sail - -echo -echo "SUCCESS. Now you can reset the tap and commit the new 'bottle do' block." -echo