Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion scripts/install

This file was deleted.

16 changes: 16 additions & 0 deletions scripts/install
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash
# Wrapper script - downloads and executes install.sh
# Supports multiple URL patterns:
# curl -fsSL https://clix.sh/install | bash
# curl -fsSL https://clix.sh/install.sh | bash
# curl -fsSL https://cli.clix.so/install | bash
# curl -fsSL https://cli.clix.so/install.sh | bash
#
# Environment variables are passed through to install.sh:
# CLIX_VERSION, CLIX_INSTALL_DIR, CLIX_NO_MODIFY_PATH, CLIX_SKIP_CHECKSUM

CLIX_VERSION="${CLIX_VERSION:-}" \
CLIX_INSTALL_DIR="${CLIX_INSTALL_DIR:-}" \
CLIX_NO_MODIFY_PATH="${CLIX_NO_MODIFY_PATH:-}" \
CLIX_SKIP_CHECKSUM="${CLIX_SKIP_CHECKSUM:-}" \
bash -c "$(curl -fsSL https://clix.sh/install.sh)"
1 change: 0 additions & 1 deletion scripts/uninstall

This file was deleted.

13 changes: 13 additions & 0 deletions scripts/uninstall
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
# Wrapper script - downloads and executes uninstall.sh
# Supports multiple URL patterns:
# curl -fsSL https://clix.sh/uninstall | bash
# curl -fsSL https://clix.sh/uninstall.sh | bash
# curl -fsSL https://cli.clix.so/uninstall | bash
# curl -fsSL https://cli.clix.so/uninstall.sh | bash
#
# Environment variables are passed through to uninstall.sh:
# CLIX_INSTALL_DIR

CLIX_INSTALL_DIR="${CLIX_INSTALL_DIR:-}" \
bash -c "$(curl -fsSL https://clix.sh/uninstall.sh)"