fix build script
This commit is contained in:
		
							parent
							
								
									aabb67519f
								
							
						
					
					
						commit
						9f277d4af0
					
				
							
								
								
									
										19
									
								
								build-ff.sh
									
									
									
									
									
								
							
							
						
						
									
										19
									
								
								build-ff.sh
									
									
									
									
									
								
							| @ -2,14 +2,19 @@ | |||||||
| PWD=$(pwd) | PWD=$(pwd) | ||||||
| BASE_DIR=${PWD}/base | BASE_DIR=${PWD}/base | ||||||
| MANIFEST_DIR=${PWD}/firefox | MANIFEST_DIR=${PWD}/firefox | ||||||
| OUT="../out/artifacts/firefox/extension.zip" | OUTPUT_DIR=${PWD}/out/artifacts/firefox | ||||||
|  | OUTPUT_FILE=${OUTPUT_DIR}/extension.zip | ||||||
| 
 | 
 | ||||||
| echo $BASE_DIR | echo $BASE_DIR | ||||||
| echo $MANIFEST_DIR | echo $MANIFEST_DIR | ||||||
| echo $OUT |  | ||||||
| 
 | 
 | ||||||
| rm -f ${OUT} | mkdir -p ${OUTPUT_DIR} | ||||||
| cd "$BASE_DIR" || return | 
 | ||||||
| zip -r ${OUT} * | # check if file exists before removing | ||||||
| cd "${MANIFEST_DIR}" || return | [ -f ${OUTPUT_FILE} ] && rm -f ${OUTPUT_FILE} | ||||||
| zip -r ${OUT} manifest.json | 
 | ||||||
|  | pushd ${BASE_DIR} | ||||||
|  | zip -r ${OUTPUT_FILE} * | ||||||
|  | popd | ||||||
|  | pushd ${MANIFEST_DIR} | ||||||
|  | zip ${OUTPUT_FILE} manifest.json | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user