diff options
author | Jesús <heckyel@hyperbola.info> | 2019-06-09 20:00:55 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-06-09 20:00:55 -0500 |
commit | 9acbe4315521766a40083e26db86e5aa20732941 (patch) | |
tree | 56c2ebf408973e9381f5d4c48ca92f86282e1303 /scripts/js.sh | |
parent | eee68bb5b3807225aeb2f4ae4030f5f35b4bfee0 (diff) | |
download | libretube-theme-9acbe4315521766a40083e26db86e5aa20732941.tar.lz libretube-theme-9acbe4315521766a40083e26db86e5aa20732941.tar.xz libretube-theme-9acbe4315521766a40083e26db86e5aa20732941.zip |
remove JS
Diffstat (limited to 'scripts/js.sh')
-rw-r--r-- | scripts/js.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/js.sh b/scripts/js.sh deleted file mode 100644 index 7a95c19..0000000 --- a/scripts/js.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# - -run_navbar() -{ - local _name="${1-menu}" - local _dir="${2-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}" - local _target="${_dir%/*}" # deleted slash - local _src="${_target%scripts}/src/js/${_name}.js" # input - local _dest="${_target%scripts}/dist/js/" # output - - if [[ -n "${_src}" ]]; - then - mkdir -p "${_dest}" - cp -fv "${_src}" "${_dest}" - fi - -} - -# ============================================================================== -# EXECUTION - START -# ============================================================================== -run_navbar "$@" |