-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docker-gc): add support for docker-gc as a container
BREAKING CHANGE: The project has been renamed to PulseBridge Prompt and the path in which it is saved now exists at ~/.pulsebridge/prompt. Backward compatibility for restoring bookmarks is not available. Please restore the bookmarks yourself by copying the bookmarks.sh file from the ./backup/<DATE>/scripts/bookmarks.sh path to the $PULSEBRIDGE_PROMPT/scripts/bookmarks.sh path.
- Loading branch information
Deavon M. McCaffery
committed
Nov 29, 2016
1 parent
daeed26
commit a73def0
Showing
33 changed files
with
141 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,5 +121,5 @@ vnd/ | |
# condo files | ||
Condo.AssemblyInfo.cs | ||
|
||
# uber backups | ||
# prompt backups | ||
backup/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ node_js: | |
os: | ||
- osx | ||
after_success: | ||
- tar -cvzf uber.tar.gz install.sh src/* | ||
- tar -cvzf prompt.tar.gz install.sh src/* | ||
- git config --global user.name 'release' | ||
- git config --global user.email '[email protected]' | ||
- npm run release | ||
|
@@ -14,11 +14,11 @@ deploy: | |
api_key: | ||
secure: XnwGUrfAkJ8axm9VGTA3doDGK2VYx7xkvGNyxlonaYG2MWkFeClVsdhriklIaoB91dw0ewxAEdtpE11/6B1uNSh2xB+6jv9KdkuMdX8kpf8WY+K+HoWP/JW0jWr5v7MHfvdt6px4cPlq6yfPHI9WRHYlOqFIT3B3nyIbkmIXrawOGZD85GoVP2JAeGebelbfIxHJFbrjhHdFRYJkZ6uFddMr+LNA56QLJvY2Jx0+qUi7b5mhoMU3xuqf1DG1jpTUN1cQsqiq9GzVZze/WOUFPRJ+uhULSxOcui6bvosX08qlzKK685BitdlvyfgJZW9KJTVad2tFD+KEtaOhRtGD/BD4pedExKrBanIBUR/JVSQbWsa8qKvFK+WKVH8KMOw4chdwbPV1h0z2VqZdADVqhE+kKORsBJptsP3vCqaclKCmej+Xsl3y/6bowXmnh4ymGqgMEG9AEMl8hLxc4IFfmMCnB0fYoCDvUl25XL5/TWI6L9pGa7XUAonaA/l+HwDOjUsTJUZ/NmNjxCErvzmi8YpK6rny3HXjb9Dv5lOszk450PKkcPMpHdXW9jgAKJs+b6GVuW7kRUryMHSV8rNgFzSYfkzcrDPvN0dYHj54QPH5jlnd2BeYrZjcp2XiEA5H2oSUV6NrdB2eH/SHLIpXvEj23k24/abxyQ9nfze9F9o= | ||
file: | ||
- uber.tar.gz | ||
- prompt.tar.gz | ||
on: | ||
tags: true | ||
deploy: | ||
provider: script | ||
script: git push https://[email protected]/pulsebridge/uber.git --follow-tags > /dev/null 2>&1 | ||
script: git push https://[email protected]/pulsebridge/prompt.git --follow-tags > /dev/null 2>&1 | ||
on: | ||
branch: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
if test -n "${UBER_DEBUG+1}"; then | ||
if test -n "${PROMPT_DEBUG+1}"; then | ||
echo 'flush-dns' | ||
fi | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.