Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GOTOOLDIR (0.07 sec)

  1. src/make.rc

    eval `{./cmd/dist/dist env -9}
    if(~ $#vflag 1)
    	echo
    
    if(~ $1 --dist-tool){
    	# Stop after building dist tool.
    	mkdir -p $GOTOOLDIR
    	if(! ~ $2 '')
    		cp cmd/dist/dist $2
    	mv cmd/dist/dist $GOTOOLDIR/dist
    	exit
    }
    
    # Run dist bootstrap to complete make.bash.
    # Bootstrap installs a proper cmd/dist, built with the new toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/make.bash

    	exit 1
    fi
    
    if $verbose; then
    	echo
    fi
    
    if [[ "$1" == "--dist-tool" ]]; then
    	# Stop after building dist tool.
    	mkdir -p "$GOTOOLDIR"
    	if [[ "$2" != "" ]]; then
    		cp cmd/dist/dist "$2"
    	fi
    	mv cmd/dist/dist "$GOTOOLDIR"/dist
    	exit 0
    fi
    
    # Run dist bootstrap to complete make.bash.
    # Bootstrap installs a proper cmd/dist, built with the new toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top