mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	This just runs Bundler with the right options. Maybe it will do more in the future, like update submodules.
		
			
				
	
	
		
			23 lines
		
	
	
		
			341 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			341 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
if [ -d /usr/share/rbenv/shims ]; then
 | 
						|
  export PATH=/usr/share/rbenv/shims:$PATH
 | 
						|
  export RBENV_VERSION=2.1.2-github
 | 
						|
  export RUBY_VERSION=2.1.2-github
 | 
						|
fi
 | 
						|
 | 
						|
set -x
 | 
						|
git log -n 1 HEAD | cat
 | 
						|
ruby -v
 | 
						|
bundle -v
 | 
						|
set +x
 | 
						|
 | 
						|
# Clean out any unversioned files
 | 
						|
git clean -fd
 | 
						|
 | 
						|
script/bootstrap
 | 
						|
bundle exec rake samples
 | 
						|
bundle exec rake
 |