1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-05 03:04:11 +01:00

Override ui.debug and ui.verbose in 'hg manifest' call in make_jar.sh

This commit is contained in:
Kris Maglione
2010-09-22 15:57:19 -04:00
parent a7ef6e47c7
commit 3bd07e77c7
2 changed files with 6 additions and 5 deletions

View File

@@ -15,7 +15,8 @@ mkdir -p $stage
if hg root >/dev/null 2>&1
then
root="$(hg root)"; mf="$(hg manifest)"
root="$(hg root)"
mf="$(hg --config ui.debug=false --config ui.verbose=false manifest)"
find=$(which find)
find() {
$find "$@" -name '*.jar'

View File

@@ -112,10 +112,10 @@ const BookmarkCache = Module("BookmarkCache", {
},
onBeforeItemRemoved: function () {},
onBeginUpdateBatch: function onBeginUpdateBatch() {},
onEndUpdateBatch: function onEndUpdateBatch() {},
onItemVisited: function onItemVisited() {},
onItemMoved: function onItemMoved() {},
onBeginUpdateBatch: function () {},
onEndUpdateBatch: function () {},
onItemVisited: function () {},
onItemMoved: function () {},
onItemAdded: function onItemAdded(itemId, folder, index) {
if (bookmarks.getItemType(itemId) == bookmarks.TYPE_BOOKMARK) {
if (this.isBookmark(itemId)) {