22 lines
		
	
	
		
			374 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			374 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| export NVM_DIR="/home/jenkins/.nvm"
 | |
| [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
 | |
| nvm use 4
 | |
| 
 | |
| set -x
 | |
| 
 | |
| # install the version of js-sdk provided to us by jenkins
 | |
| npm install ./node_modules/matrix-js-sdk-*.tgz
 | |
| 
 | |
| # install the other dependencies
 | |
| npm install
 | |
| 
 | |
| # delete the old tarball, if it exists
 | |
| rm -f matrix-react-sdk-*.tgz
 | |
| 
 | |
| # build our tarball
 | |
| npm pack
 |