github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/scripts/update-cadence.sh (about)

     1  #!/bin/sh
     2  #
     3  # This script updates all cadence dependencies to a new version.
     4  # Specify the desired version as the only argument when running the script:
     5  #   ./scripts/update-cadence.sh v1.2.3
     6  
     7  go get github.com/onflow/cadence@$1
     8  cd integration
     9  go get github.com/onflow/cadence@$1
    10  cd ../insecure/
    11  go get github.com/onflow/cadence@$1
    12  cd ..