From: Daniel Carl Date: Tue, 20 Jun 2017 09:14:04 +0000 (+0200) Subject: Show extension dir in version output too. X-Git-Url: https://git.owens.tech/assets/static/git-favicon.png/assets/static/git-favicon.png/git?a=commitdiff_plain;h=3acab58da28dd124fb4d02ceb36a18d1e4cf562a;p=vimb.git Show extension dir in version output too. Hope this helps to identify compilation issues in the future where the webextension is not found. --- diff --git a/src/main.c b/src/main.c index fe7d22f..ef66ef3 100644 --- a/src/main.c +++ b/src/main.c @@ -1800,6 +1800,8 @@ int main(int argc, char* argv[]) soup_get_major_version(), soup_get_minor_version(), soup_get_micro_version()); + printf("Extension dir: %s\n", + EXTENSIONDIR); return EXIT_SUCCESS; }