17 lines
		
	
	
		
			342 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			342 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| set -u
 | |
| # git clone https://git.daplie.com/OAuth3/org.oauth3.git /srv/walnut/packages/pages/azp@oauth3.org
 | |
| 
 | |
| mkdir -p assets
 | |
| if ! [ -d ./assets/oauth3.org ]; then
 | |
|   git clone https://git.daplie.com/OAuth3/oauth3.js.git ./assets/oauth3.org
 | |
| fi
 | |
| pushd ./assets/oauth3.org
 | |
|   git checkout v1.2
 | |
|   git pull
 | |
| popd
 | |
| 
 | |
| bower install rsvp
 |