diff --git a/.forgejo/workflows/security-scan.yml b/.forgejo/workflows/security-scan.yml index 28a9aa0..48e19c5 100644 --- a/.forgejo/workflows/security-scan.yml +++ b/.forgejo/workflows/security-scan.yml @@ -43,12 +43,12 @@ jobs: echo "ERROR: unsafe package usage detected" exit 1 fi - echo "✓ No unsafe package usage found" + echo "No unsafe package usage found" - name: Verify dependencies run: | go mod verify - echo "✓ Go modules verified" + echo "Go modules verified" native-security: name: Native Library Security diff --git a/cli/scripts/build_sqlite.sh b/cli/scripts/build_sqlite.sh index 94d36cd..45e16b9 100644 --- a/cli/scripts/build_sqlite.sh +++ b/cli/scripts/build_sqlite.sh @@ -64,14 +64,14 @@ if [[ ! -f "${out_dir}/sqlite3.c" ]]; then unzip -q "${tmp}/sqlite.zip" -d "${tmp}" mv "${tmp}/sqlite-amalgamation-${SQLITE_VERSION}"/* "${out_dir}/" - echo "✓ SQLite fetched to ${out_dir}" + echo "SQLite fetched to ${out_dir}" else - echo "✓ SQLite already present at ${out_dir}" + echo "SQLite already present at ${out_dir}" fi # Verify if [[ -f "${out_dir}/sqlite3.c" && -f "${out_dir}/sqlite3.h" ]]; then - echo "✓ SQLite ready:" + echo "SQLite ready:" ls -lh "${out_dir}/sqlite3.c" "${out_dir}/sqlite3.h" else echo "Error: SQLite files not found in ${out_dir}"