mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 16:04:12 +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
|
if hg root >/dev/null 2>&1
|
||||||
then
|
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=$(which find)
|
||||||
find() {
|
find() {
|
||||||
$find "$@" -name '*.jar'
|
$find "$@" -name '*.jar'
|
||||||
|
|||||||
@@ -112,10 +112,10 @@ const BookmarkCache = Module("BookmarkCache", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
onBeforeItemRemoved: function () {},
|
onBeforeItemRemoved: function () {},
|
||||||
onBeginUpdateBatch: function onBeginUpdateBatch() {},
|
onBeginUpdateBatch: function () {},
|
||||||
onEndUpdateBatch: function onEndUpdateBatch() {},
|
onEndUpdateBatch: function () {},
|
||||||
onItemVisited: function onItemVisited() {},
|
onItemVisited: function () {},
|
||||||
onItemMoved: function onItemMoved() {},
|
onItemMoved: function () {},
|
||||||
onItemAdded: function onItemAdded(itemId, folder, index) {
|
onItemAdded: function onItemAdded(itemId, folder, index) {
|
||||||
if (bookmarks.getItemType(itemId) == bookmarks.TYPE_BOOKMARK) {
|
if (bookmarks.getItemType(itemId) == bookmarks.TYPE_BOOKMARK) {
|
||||||
if (this.isBookmark(itemId)) {
|
if (this.isBookmark(itemId)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user