tazbug diff tazbug @ rev 124

Fix Makefile
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 21 01:13:01 2017 +0100 (2017-02-21)
parents
children 3d8bf273e46e
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tazbug	Tue Feb 21 01:13:01 2017 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +#!/bin/sh
     1.5 +#
     1.6 +# TazBug Command line tool. Help to search and check bugs from cmdline.
     1.7 +#
     1.8 +# Copyright (C) 2017 SliTaz GNU/Linux - BSD License
     1.9 +#
    1.10 +. /lib/libtaz.sh
    1.11 +
    1.12 +url="http://bugs.slitaz.org/"
    1.13 +
    1.14 +#
    1.15 +# Commands
    1.16 +#
    1.17 +
    1.18 +case "$1" in
    1.19 +	*)
    1.20 +		gettext "Usage:"; echo " $(basename $0) [command]" ;;
    1.21 +esac
    1.22 +
    1.23 +exit 0