summaryrefslogtreecommitdiffhomepage
path: root/bin/build-pkg-electron
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-06-04 21:21:20 +0900
committerAdam Malczewski <[email protected]>2026-06-04 21:21:20 +0900
commit394f1ed37ce860da6fdc385769bf29f9737105cd (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /bin/build-pkg-electron
parent81a9cdbadf8c9d940d4fe9a2a0de607dee1f5f1a (diff)
downloaddispatch-394f1ed37ce860da6fdc385769bf29f9737105cd.tar.gz
dispatch-394f1ed37ce860da6fdc385769bf29f9737105cd.zip
chore: genesis — remove all files to rebuild from scratch (arch rewrite)
Diffstat (limited to 'bin/build-pkg-electron')
-rwxr-xr-xbin/build-pkg-electron20
1 files changed, 0 insertions, 20 deletions
diff --git a/bin/build-pkg-electron b/bin/build-pkg-electron
deleted file mode 100755
index ceec321..0000000
--- a/bin/build-pkg-electron
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-# Build the dispatch-electron Arch package (Linux desktop wrapper).
-# Depends on the `dispatch` package being built/installed at the matching version.
-#
-# Usage:
-# bin/build-pkg-electron # build
-# bin/build-pkg-electron --noconfirm
-
-set -euo pipefail
-
-SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
-PROJECT_DIR="$(dirname "$SCRIPT_DIR")"
-PACKAGING_DIR="$PROJECT_DIR/packaging/electron"
-
-cd "$PACKAGING_DIR"
-makepkg -fd "$@"
-
-echo ""
-echo "Built package:"
-ls -1t "$PACKAGING_DIR"/*.pkg.tar.zst 2>/dev/null | head -1