mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-11-04 06:49:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			344 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			344 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
 | 
						|
 | 
						|
case `uname` in
 | 
						|
    *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
 | 
						|
esac
 | 
						|
 | 
						|
if [ -x "$basedir/node" ]; then
 | 
						|
  "$basedir/node"  "$basedir/../node-pre-gyp/bin/node-pre-gyp" "$@"
 | 
						|
  ret=$?
 | 
						|
else 
 | 
						|
  node  "$basedir/../node-pre-gyp/bin/node-pre-gyp" "$@"
 | 
						|
  ret=$?
 | 
						|
fi
 | 
						|
exit $ret
 |