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:
@@ -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'
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user