reesporte
48aef0c8a4
add copyright notice back in
...
```bash
for file in `cat diffys`; do
printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file;
done
```
2021-12-10 11:01:04 -06:00
reesporte
4c53f86e82
removed license from each go file
...
i used this script, a little clunky but it got the job done
```bash
for file in `find . -type f -print | grep '\.go'`; do
sed '1,/^\/\/ limitations under the License.$/d' $file > $file.tmp;
result=`cat $file.tmp`
if [[ result != "" ]]; then
gofmt $file.tmp &> /dev/null;
if [[ $? == 0 ]]; then
mv $file.tmp $file && gofmt -w $file;
else
rm $file.tmp;
fi
else
rm $file.tmp;
fi
done
```
2021-12-10 09:17:17 -06:00
Souhaila Noor
65c4fc9cdb
updated error messages
2021-11-23 20:28:14 -06:00
Souhaila Noor
0e2d71c303
added error handling
2021-11-23 18:48:06 -06:00
Souhaila Noor
6172f98eab
test failed condition
2021-11-23 18:32:09 -06:00
Souhaila Noor
001678386f
define ip var
2021-11-23 17:27:57 -06:00
Souhaila Noor
42b6c2b351
updated syntax
2021-11-23 17:25:10 -06:00
Souhaila Noor
afb96f4a9b
pass error back to gitlab runner
2021-11-23 17:17:13 -06:00
Souhaila Noor
d13eef4c4b
echo errors
2021-11-23 17:09:35 -06:00
Souhaila Noor
f03720f0a3
error handling
2021-11-23 16:33:32 -06:00
Souhaila Noor
0030e759da
removed aws config from shell script
2021-11-23 16:24:56 -06:00
Souhaila Noor
d781dfb29b
remove error handling to debug
2021-11-23 16:18:14 -06:00
Souhaila Noor
8a77da0db9
removed ssh keys from shell script
2021-11-23 16:14:21 -06:00
Souhaila Noor
184b935550
added print statement
2021-11-23 16:07:22 -06:00
Souhaila Noor
53d7d6b91c
fix for ssh-add error
2021-11-23 16:04:29 -06:00
Souhaila Noor
cceb173d5d
added before script commands
2021-11-23 15:55:36 -06:00
Souhaila Noor
a6bc10dec9
removed single quotes
2021-11-23 15:50:43 -06:00
Souhaila Noor
dbd1e611d0
changed jobs order
2021-11-23 15:42:12 -06:00
Souhaila Noor
aac3b0768c
fixed syntax error
2021-11-23 15:32:22 -06:00
Souhaila Noor
cce48a2638
created a shell script for deplooying node and handling error conditions
2021-11-23 15:24:47 -06:00
kcrodgers24
50e7cda07f
modify functions to accept a requested num of records
2021-11-22 14:53:17 -08:00
kcrodgers24
4c9edabd6d
Merge branch 'master' into generate-test-data-FB-971
2021-11-22 14:19:16 -08:00
kcrodgers24
49289f2237
replace fmt.Print with t.Fatal, and improve date generator
2021-11-22 13:53:41 -08:00
kcrodgers24
06be6c0981
use log.Fatal in lieu of fmt.Print
2021-11-22 11:06:38 -08:00
kcrodgers24
2385fda259
add tests, remove commented code
2021-11-22 10:45:12 -08:00
kcrodgers24
97c4ee670b
add tests
2021-11-22 10:43:13 -08:00
kcrodgers24
4f5f27f513
make error handling best
2021-11-19 11:47:32 -08:00
kcrodgers24
dc9c2a842a
make error handling better
2021-11-19 09:38:12 -08:00
kcrodgers24
b5e5df8b58
add error checking
2021-11-18 16:10:49 -08:00
kcrodgers24
27b73d2b7d
corrects typo on line 229
2021-11-18 14:27:19 -08:00
kcrodgers24
90ace6b970
deletes duplicate file and adds license header
2021-11-18 13:47:23 -08:00
kcrodgers24
14050c567c
corrects naming convention and age range
2021-11-18 13:15:44 -08:00
Souhaila Noor
d40eefb364
added host:port as a command line input
2021-11-18 12:06:07 -06:00
Todd Gruben
442d109814
created qa folder
2021-11-18 10:28:49 -06:00