File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 52
52
chmod +x ./release/generate_linux_binary.sh
53
53
./release/generate_linux_binary.sh
54
54
chmod +x ./dist/cloudgrep
55
- ./dist/cloudgrep # check it doesn't return non 0 exit status, i.e. crash
55
+ ./dist/cloudgrep -h # check it doesn't return non 0 exit status, i.e. crash
56
56
- uses : actions/upload-artifact@v3
57
57
with :
58
58
name : dist-linux
98
98
chmod +x ./release/generate_linux_binary.sh
99
99
./release/generate_linux_binary.sh
100
100
chmod +x ./dist/cloudgrep
101
- ./dist/cloudgrep # check it doesn't return non 0 exit status, i.e. crash
101
+ ./dist/cloudgrep -h # check it doesn't return non 0 exit status, i.e. crash
102
102
- uses : actions/upload-artifact@v3
103
103
with :
104
104
name : dist-osx
105
- path : ./dist/*
105
+ path : ./dist/*
Original file line number Diff line number Diff line change 1
- from .cloudgrep import CloudGrep
1
+ from cloudgrep .cloudgrep import CloudGrep
2
2
import argparse
3
3
import logging
4
4
import sys
Original file line number Diff line number Diff line change 2
2
pwd
3
3
ls
4
4
pip3 install -r requirements.txt
5
- pyinstaller --onefile --clean ./cloudgrep/cloudgrep .py
5
+ pyinstaller --onefile --name cloudgrep -- clean ./cloudgrep/__main__ .py
You can’t perform that action at this time.
0 commit comments