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: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ A huge thank you to all the people who have contributed to vet! This project wou
## Core Contributions & Ideas

* **[@smartwatermelon](https://github.com/smartwatermelon)** - Provided the initial concept and working formula for the Homebrew distribution, a key feature for macOS and Linux users.
* **[@dbohdan](https://github.com/dbohdan)** - Fixed a critical bug in the change-detection logic.

*(If you have contributed to the project, please feel free to open a pull request to add your name!)*
4 changes: 2 additions & 2 deletions vet
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
# SPDX-License-Identifier: MIT
#
# vet - A safer way to run remote scripts.
# Version: v1.0.0
# Version: v1.0.1
#
# This tool fetches a script, shows a diff against previous versions,
# and asks for explicit confirmation before executing.

set -euo pipefail

readonly APP_NAME="vet"
readonly VERSION="v1.0.0"
readonly VERSION="v1.0.1"
readonly CACHE_DIR="${HOME}/.cache/${APP_NAME}"

if [ -t 1 ]; then
Expand Down
Loading