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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module example.com/main

go 1.24
go 1.25

require github.com/AsaiYusuke/jsonpath/v2 v2.0.0
require github.com/AsaiYusuke/jsonpath/v2 v2.2.0
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github.com/AsaiYusuke/jsonpath/v2 v2.0.0 h1:7IA07mFMb91xVypLBbK/hKK9i/ohpJ/FTyxg8wJlq8E=
github.com/AsaiYusuke/jsonpath/v2 v2.0.0/go.mod h1:Y98U0Usrwioq+aU013GEOt7SEbxE6vtNuschYqQu4Yc=
github.com/AsaiYusuke/jsonpath/v2 v2.2.0 h1:yqq/5C26jeA++3yngSSO0w+V5uNenb02/4jYrdAZ+fg=
github.com/AsaiYusuke/jsonpath/v2 v2.2.0/go.mod h1:Y98U0Usrwioq+aU013GEOt7SEbxE6vtNuschYqQu4Yc=
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
set -euo pipefail

readonly script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
readonly script_dir

"$script_dir"/build/main "$@"
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail

cd "$(dirname "$BASH_SOURCE[0]")"
cd "$(dirname "${BASH_SOURCE[0]}")"
go get -u
go mod tidy