Skip to content

Commit

Permalink
Fixed docker installer again for ARM and added dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
WD-stefaang committed Jun 25, 2018
1 parent 98db89c commit f2f6813
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# comment
#
packages
4 changes: 2 additions & 2 deletions wdpk/docker/install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

[ -f /tmp/debug_apkg ] && echo "APKG_DEBUG: $0 $@" >> /tmp/debug_apkg

Expand All @@ -18,7 +18,7 @@ cp -rf $path_src $NAS_PROG

# get current architecture
ARCH="$(uname -m)"
if [ ${ARCH} -ne "x86_64" ]; then
if [ ${ARCH} != "x86_64" ]; then
ARCH="armel"
fi

Expand Down

0 comments on commit f2f6813

Please sign in to comment.