upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-11-28 00:58:42 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-11-28 00:58:42 +0000
commit0c1d60a2ad69e79e83d36ed8a001743fde3d6666 (patch)
tree4498382545dbc858c1617fcced9dc86e3340ba8e
parentd3e703d7f522c30ac6634716654c24cb7415fabd (diff)
fix: sh script to work from main directory
-rwxr-xr-xgrasp-audit/test-ngit-relay.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/grasp-audit/test-ngit-relay.sh b/grasp-audit/test-ngit-relay.sh
index ff6ac1a..2f43042 100755
--- a/grasp-audit/test-ngit-relay.sh
+++ b/grasp-audit/test-ngit-relay.sh
@@ -1,6 +1,11 @@
1#!/bin/bash 1#!/bin/bash
2set -e 2set -e
3 3
4# Change to script's directory to ensure cargo finds grasp-audit/Cargo.toml
5# This allows the script to be run from any directory
6SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
7cd "$SCRIPT_DIR"
8
4# ============================================================================= 9# =============================================================================
5# Script: test-ngit-relay.sh 10# Script: test-ngit-relay.sh
6# Purpose: Test ngit-relay against GRASP specifications 11# Purpose: Test ngit-relay against GRASP specifications