Fixed .gitignore - was including object files

pull/2/head
Dave Akerman 2015-01-02 10:29:51 +00:00
rodzic 3bc4b5bfa9
commit 87e11f9804
2 zmienionych plików z 5 dodań i 2 usunięć

4
.gitignore vendored
Wyświetl plik

@ -1,6 +1,6 @@
.dropbox
desktop.ini
.o
*.o
*.jpg
*.bin
gateway

3
ssdv.c
Wyświetl plik

@ -33,6 +33,9 @@ void ConvertFile(char *FileName)
sprintf(CommandLine, "ssdv -d /tmp/%s %s 2> /dev/null > /dev/null", FileName, TargetFile);
system(CommandLine);
// Upload to balloon.photos
sprintf(CommandLine, "curl -T %s ftp.daveakerman.com -Q \"TYPE I\" --user balloon@daveakerman.com:pi-in-the-sky 2> /dev/null > /dev/null", TargetFile);
system(CommandLine);
}
}