mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 10:06:32 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			315 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			315 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /usr/bin/env bash
 | |
| 
 | |
| # Decrypt the file
 | |
| # --batch to prevent interactive command
 | |
| # --yes to assume "yes" for questions
 | |
| gpg --quiet --batch --yes --decrypt --passphrase="$1" \
 | |
| --output $HOME/browser_data.tar.gz .github/secrets/browser_data.tar.gz.gpg
 | |
| 
 | |
| # Unzip the tarball
 | |
| tar xzf $HOME/browser_data.tar.gz -C $HOME
 | 
