github.com/bigzoro/my_simplechain@v0.0.0-20240315012955-8ad0a2a29bb9/build/env.sh (about)

     1  #!/bin/sh
     2  
     3  set -e
     4  
     5  if [ ! -f "build/env.sh" ]; then
     6      echo "$0 must be run from the root of the repository."
     7      exit 2
     8  fi
     9  
    10  # Create fake Go workspace if it doesn't exist yet.
    11  #workspace="$PWD/build/_workspace"
    12  #root="$PWD"
    13  #ethdir="$workspace/src/github.com/simplechain-org"
    14  #if [ ! -L "$ethdir/go-simplechain" ]; then
    15  #    mkdir -p "$ethdir"
    16  #    cd "$ethdir"
    17  #    ln -s ../../../../../. go-simplechain
    18  #    cd "$root"
    19  #fi
    20  #
    21  ## Set up the environment to use the workspace.
    22  #GOPATH="$workspace"
    23  #export GOPATH
    24  #
    25  ## Run the command inside the workspace.
    26  #cd "$ethdir/go-simplechain"
    27  #PWD="$ethdir/go-simplechain"
    28  
    29  
    30  # Launch the arguments with the configured environment.
    31  exec "$@"