Skip to content

Commit

Permalink
Make slackbuild a standard bourne shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
rg3 committed Jun 16, 2013
1 parent c0775ca commit dbab717
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slackroll.slackbuild
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh

# Exit on errors.
set -e
Expand All @@ -11,7 +11,7 @@ export LANG=C

# Initial variables.
NAME=slackroll
VERSION=v$( awk '/^slackroll_version / { print $3 }' slackroll )
VERSION=v`grep '^slackroll_version' slackroll | cut -d' ' -f3`
ARCH=noarch
BUILD=${BUILD:-1}
OUT=${TMP:-/tmp}
Expand Down

0 comments on commit dbab717

Please sign in to comment.