| 
									
										
										
										
											2019-12-09 16:54:42 -05:00
										 |  |  | #!/bin/sh
 | 
					
						
							| 
									
										
										
										
											2019-12-03 10:28:59 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | if [ ! -f "./basic/basic-file.txt" ]; then | 
					
						
							|  |  |  |     echo "Expected basic file does not exist" | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-09 16:54:42 -05:00
										 |  |  | if [ "$1" = "container" ]; then | 
					
						
							|  |  |  |   # Verify no .git folder | 
					
						
							|  |  |  |   if [ -d "./basic/.git" ]; then | 
					
						
							|  |  |  |     echo "Did not expect ./basic/.git folder to exist" | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   # Verify .git folder | 
					
						
							|  |  |  |   if [ ! -d "./basic/.git" ]; then | 
					
						
							|  |  |  |     echo "Expected ./basic/.git folder to exist" | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Verify auth token | 
					
						
							|  |  |  |   cd basic | 
					
						
							|  |  |  |   git fetch --depth=1 | 
					
						
							|  |  |  | fi |