Skip to content

Commit

Permalink
Lançamento da versão 1.2.0
Browse files Browse the repository at this point in the history
Implementada nova funcionalidade: o Quick DEB Builder agora suporta criação de pacotes .deb em interface de linha de comando - CLI (issue #10)
  • Loading branch information
Gustavo Moraes committed Dec 18, 2015
1 parent cf61af6 commit 5d62538
Show file tree
Hide file tree
Showing 5 changed files with 173 additions and 57 deletions.
7 changes: 4 additions & 3 deletions quick-deb-builder/usr/bin/quick-deb-builder
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#! /bin/bash

# Author: Gustavo Moraes <gustavosotnas@gmail.com>
# Author: Gustavo Moraes <gustavosotnas1@gmail.com>
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file COPYING in the main directory of this archive
# for more details.
#

# OBS.: Os símbolos ": '" e "'" são caracteres para comentários multilinha (destacados)
# Uso (Parâmetros OPCIONAIS que o usuário pode passar para o "../share/quick-deb-builder/quick-deb-builder.sh"):
: ' quick-deb-builder'
Expand All @@ -17,4 +17,5 @@ set -u; # Bash will exit the script if you try to use an uninitialised variable

DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # Pega o diretório no qual o script está localizado (default: "/usr/bin")
cd "$DIR"/../share/quick-deb-builder
sudo ./quick-deb-builder.sh "$HOME" "$USER" "$@" # quick-deb-builder.sh (String home, String user, String options) # Como a pasta sudoers.d está modificada, o sudo não irá perguntar senha
sudo ./quick-deb-builder.sh "$HOME" "$USER" "$@" # quick-deb-builder.sh (String home, String user, String options)
# OBSERVAÇÃO: Como a pasta sudoers.d tem uma entrada do quick-deb-builder.sh, o sudo não irá perguntar senha
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/bash

# Author: Gustavo Moraes <gustavosotnas@gmail.com>
# Author: Gustavo Moraes <gustavosotnas1@gmail.com>
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file COPYING in the main directory of this archive
Expand Down
Loading

0 comments on commit 5d62538

Please sign in to comment.