fix(DeepSource): Fixed misspelled ignore flag
This commit is contained in:
parent
5a7f3b9ae7
commit
f22a71451f
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ func compress(fileToWrite *os.File, folderPath string, backupName string) {
|
||||||
|
|
||||||
go fmt.Printf("[%s] Start compression...\n", backupName)
|
go fmt.Printf("[%s] Start compression...\n", backupName)
|
||||||
SQL.NewLogEntry(SQL.GetSQLInstance(), uuid.New(), SQL.LogInfo, backupName, SQL.SQLStage_Compress, SQL.REMOTE_NONE, "Start compression", time.Now())
|
SQL.NewLogEntry(SQL.GetSQLInstance(), uuid.New(), SQL.LogInfo, backupName, SQL.SQLStage_Compress, SQL.REMOTE_NONE, "Start compression", time.Now())
|
||||||
// skippcq: SCC-SA4009
|
// skipcq: SCC-SA4009
|
||||||
filepath.Walk(folderPath, func(file string, fi os.FileInfo, err error) error {
|
filepath.Walk(folderPath, func(file string, fi os.FileInfo, err error) error {
|
||||||
header, err := tar.FileInfoHeader(fi, file)
|
header, err := tar.FileInfoHeader(fi, file)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
||||||
Reference in a new issue