* Add error message for readlink -f failure
(cherry picked from commit 89f5145f64)
Co-authored-by: Will Hickey <will.hickey@solana.com>
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| here="$(dirname "$0")"
 | |
| cargo="$(readlink -f "${here}/../cargo")"
 | |
| 
 | |
| if [[ -z $cargo ]]; then
 | |
|   >&2 echo "Failed to find cargo. Mac readlink doesn't support -f. Consider switching
 | |
|   to gnu readlink with 'brew install coreutils' and then symlink greadlink as
 | |
|   /usr/local/bin/readlink."
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| set -e
 | |
| 
 | |
| shifted_args=()
 | |
| while [[ -n $1 ]]; do
 | |
|   if [[ $1 = -- ]]; then
 | |
|     escape_marker=found
 | |
|     shift
 | |
|     break
 | |
|   elif [[ $1 = "--ignore-exit-code" ]]; then
 | |
|     ignore=1
 | |
|     shift
 | |
|   else
 | |
|     shifted_args+=("$1")
 | |
|     shift
 | |
|   fi
 | |
| done
 | |
| 
 | |
| # When "--" appear at the first and shifted_args is empty, consume it here
 | |
| # to unambiguously pass and use any other "--" for cargo
 | |
| if [[ -n $escape_marker && ${#shifted_args[@]} -gt 0 ]]; then
 | |
|   files="${shifted_args[*]}"
 | |
|   for file in $files; do
 | |
|     if [[ $file = "${file%Cargo.lock}" ]]; then
 | |
|       echo "$0: unrecognizable as Cargo.lock path (prepend \"--\"?): $file" >&2
 | |
|       exit 1
 | |
|     fi
 | |
|   done
 | |
|   shifted_args=()
 | |
| else
 | |
|   files="$(git ls-files :**Cargo.lock)"
 | |
| fi
 | |
| 
 | |
| for lock_file in $files; do
 | |
|   if [[ -n $CI ]]; then
 | |
|     echo "--- [$lock_file]: cargo " "${shifted_args[@]}" "$@"
 | |
|   fi
 | |
| 
 | |
|   if (set -x && cd "$(dirname "$lock_file")" && "$cargo" "${shifted_args[@]}" "$@"); then
 | |
|     # noop
 | |
|     true
 | |
|   else
 | |
|     failed_exit_code=$?
 | |
|     if [[ -n $ignore ]]; then
 | |
|       echo "$0: WARN: ignoring last cargo command failed exit code as requested:" $failed_exit_code
 | |
|       true
 | |
|     else
 | |
|       exit $failed_exit_code
 | |
|     fi
 | |
|   fi
 | |
| done
 |