Skip to content

Commit 3309865

Browse files
committed
fix: ignore more rysnc and remove jq
1 parent 9347927 commit 3309865

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/project/functions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ func startProject(networkVolumeId string) error {
295295
fmt.Printf("Activating Python virtual environment %s on Pod %s\n", venvPath, projectPodId)
296296
sshConn.RunCommands([]string{
297297
fmt.Sprint(`
298-
DEPENDENCIES=("wget" "sudo" "lsof" "git" "rsync" "zstd" "jq")
298+
DEPENDENCIES=("wget" "sudo" "lsof" "git" "rsync" "zstd")
299299
300300
function check_and_install_dependencies() {
301301
for dep in "${DEPENDENCIES[@]}"; do

cmd/project/ssh.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func (sshConn *SSHConnection) Rsync(localDir string, remoteDir string, quiet boo
105105
for scanner.Scan() {
106106
line := scanner.Text()
107107

108-
if line == "" || strings.Contains(line, "sending incremental file list") || strings.Contains(line, "total size is") || strings.Contains(line, "bytes/sec") {
108+
if line == "" || strings.Contains(line, "sending incremental file list") || strings.Contains(line, "total size is") || strings.Contains(line, "bytes/sec") || strings.Contains(line, "building file list") {
109109
continue
110110
}
111111

0 commit comments

Comments
 (0)