Browse Source

fix tmp file names with "gimme." prefix

Kyle P Davis 9 years ago
parent
commit
aa231d5e7d
4 changed files with 4 additions and 4 deletions
  1. 1 1
      gimmes/android-studio
  2. 1 1
      gimmes/atom
  3. 1 1
      gimmes/eclipse-jee
  4. 1 1
      gimmes/vscode

+ 1 - 1
gimmes/android-studio

@@ -8,7 +8,7 @@ if [[ "$OS" = "Darwin" ]]; then
 else
 	if ! has android-studio; then
 		URL='https://dl.google.com/dl/android/studio/ide-zips/2.0.0.20/android-studio-ide-143.2739321-linux.zip'
-		TMP_FILE="/tmp/android-studio.2.0.0.zip"
+		TMP_FILE="/tmp/gimme.android-studio.2.0.0.zip"
 		curl -fSLC- "$URL" -o "$TMP_FILE"
 		cd "$HOME"
 		unzip "$TMP_FILE"

+ 1 - 1
gimmes/atom

@@ -6,7 +6,7 @@ if [[ "$OS" = "Darwin" ]]; then
 else
 	if ! has atom; then
 		URL='https://atom.io/download/deb'
-		TMP_FILE="/tmp/atom.latest.deb"
+		TMP_FILE="/tmp/gimme.atom.latest.deb"
 		curl -fSLC- "$URL" -o "$TMP_FILE"
 		sudo dpkg -i "$TMP_FILE"
 		rm "$TMP_FILE"

+ 1 - 1
gimmes/eclipse-jee

@@ -8,7 +8,7 @@ if [[ "$OS" = "Darwin" ]]; then
 else
 	if ! has eclipse; then
 		URL='http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/mars/R/eclipse-jee-mars-R-linux-gtk-x86_64.tar.gz&r=1'
-		TMP_FILE="/tmp/eclipse.mars.tar.gz"
+		TMP_FILE="/tmp/gimme.eclipse.mars.tar.gz"
 		curl -fSLC- "$URL" -o "$TMP_FILE"
 		cd "$HOME"
 		tar -xzf "$TMP_FILE"

+ 1 - 1
gimmes/vscode

@@ -5,7 +5,7 @@ if ! has code; then
 		gimme_pkg visual-studio-code
 	else
 		URL="https://go.microsoft.com/fwlink/?LinkID=760868"
-		TMP_FILE="/tmp/vscode-amd64.1.0.0.deb"
+		TMP_FILE="/tmp/gimme.vscode-amd64.1.0.0.deb"
 		curl -fSLC- "$URL" -o "$TMP_FILE"
 		sudo dpkg -i "$TMP_FILE"
 		rm "$TMP_FILE"