Skip to content
Snippets Groups Projects
ebs.sh 337 B
Newer Older
  • Learn to ignore specific revisions
  • #! /usr/bin/env bash
    
    set -euo pipefail
    
    # switch to project root directory if we're not already there
    script_directory=`dirname "${BASH_SOURCE[0]}"`
    cd "$script_directory/.."
    
    source "./bin/check-clojure-cli.sh"
    check_clojure_cli
    
    source "./bin/clear-outdated-cpcaches.sh"
    clear_outdated_cpcaches
    
    clojure -X:build:build/publish-ebs $@