From 4bab0508c59e0d90eb919d88bfbf7d0544906e63 Mon Sep 17 00:00:00 2001 From: Matt Gates Date: Sun, 23 Jul 2017 09:24:56 -0400 Subject: [PATCH] Introduce end-of-line normalization --- fluxion.sh | 8 ++++---- language/{source => source.sh} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename language/{source => source.sh} (100%) diff --git a/fluxion.sh b/fluxion.sh index 1966cf2..9b28e2a 100644 --- a/fluxion.sh +++ b/fluxion.sh @@ -134,7 +134,7 @@ trap exitmode SIGINT SIGHUP source lib/exitmode.sh #Languages for the web interface -source language/source +source language/source.sh # Design function top(){ @@ -1352,7 +1352,7 @@ function ConnectionRESET { echo totallines=46 # number of selection lines to print itemprinted=0 - + for line in $( seq 1 $((totallines/2+1)) ); do for column in {0..1}; do n=$line @@ -1416,8 +1416,8 @@ function ConnectionRESET { done echo done - - + + echo echo -n "#? " read webconf diff --git a/language/source b/language/source.sh similarity index 100% rename from language/source rename to language/source.sh