Skip to content

Commit

Permalink
ncp-web: fix JS docker detection
Browse files Browse the repository at this point in the history
  • Loading branch information
nachoparker committed Jun 21, 2018
1 parent de5d9fb commit a0a31b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions build-SD-armbian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@ CONF="config-$BOARD".conf
# build
armbian/compile.sh docker

mv armbian/output/images/Armbian*.img "$IMG"

# pack image
mv armbian/output/images/Armbian*.img "$IMG"
TAR=output/"$( basename "$IMG" .img ).tar.bz2"
pack_image "$IMG" "$TAR"

Expand Down
6 changes: 4 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@

[v0.57.8](https://github.com/nextcloud/nextcloudpi/commit/61360da) (2018-06-19) docker: adapt wizard
[v0.57.9](https://github.com/nextcloud/nextcloudpi/commit/b91d989) (2018-06-20) ncp-web: fix JS docker detection

[v0.57.7](https://github.com/nextcloud/nextcloudpi/commit/98c99e3) (2018-06-19) docker: fix persist ncp-web password
[v0.57.8 ](https://github.com/nextcloud/nextcloudpi/commit/e63523c) (2018-06-19) docker: adapt wizard

[v0.57.7 ](https://github.com/nextcloud/nextcloudpi/commit/98c99e3) (2018-06-19) docker: fix persist ncp-web password

[v0.57.6 ](https://github.com/nextcloud/nextcloudpi/commit/9d0d3b3) (2018-06-19) fix mysqld service named mysql

Expand Down
2 changes: 1 addition & 1 deletion ncp-web/wizard/JS/wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*global $, jQuery, alert*/
$(document).ready(function(){

var in_docker = $('#in-docker');
var in_docker = document.getElementById( 'in-docker' );

function addNotification( txt, tclass )
{
Expand Down

0 comments on commit a0a31b4

Please sign in to comment.