aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/android/support
diff options
context:
space:
mode:
authorVincent <valodim@mugenguild.com>2016-02-23 16:01:13 +0100
committerVincent <valodim@mugenguild.com>2016-02-23 16:01:13 +0100
commitfd24acbf0e54be2be222ca107d97c63f308a1d4a (patch)
treedf87be1e599f5beb146f31e84deb74a815bdab4c /OpenKeychain/src/main/java/android/support
parentc1d268a5ecbb49a56561bd66c9b2967e282b9071 (diff)
parent03e695c6509ee6ada0ad6a0a21181277ba298c34 (diff)
downloadopen-keychain-fd24acbf0e54be2be222ca107d97c63f308a1d4a.tar.gz
open-keychain-fd24acbf0e54be2be222ca107d97c63f308a1d4a.tar.bz2
open-keychain-fd24acbf0e54be2be222ca107d97c63f308a1d4a.zip
Merge pull request #1727 from open-keychain/mime-fallback
try to guess if data is text or not
Diffstat (limited to 'OpenKeychain/src/main/java/android/support')
0 files changed, 0 insertions, 0 deletions
.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/sh

src='./install'
if [ -d ./dist ]; then
  src='./dist/install'
fi

if ! [ -d $src ]; then
  echo "ERROR: Could not find a valid distribution directory."
  echo "       If this is a source-only release, try 'make dist'."
  exit 1
fi

dst='/'
if [ $# -ne 0 ]; then 
  dst=$1
fi

if ! [ -d $dst ]; then
  echo "ERROR: You must specify a valid install directory."
  echo "       The specified directory '$dst' is not valid."
  exit 1
fi

echo "Installing Xen from '$src' to '$dst'..."
cp -fdR $src/* $dst
echo "All done."

echo "Checking to see whether prerequisite tools are installed..."
cd $src/../check
./chk install
echo "All done."

exit 0