diff options
author | Jack Palevich <jackpal@google.com> | 2009-05-28 14:53:02 -0700 |
---|---|---|
committer | Jack Palevich <jackpal@google.com> | 2009-05-28 15:10:26 -0700 |
commit | bd2af13414aa9df885c6b7e415e106771d1b8017 (patch) | |
tree | bec55e766a7db103c464743ab7b1890a510eeb61 /ddms/app | |
parent | 88339396c71db49abdd4629c58b275af2654b292 (diff) | |
download | sdk-bd2af13414aa9df885c6b7e415e106771d1b8017.zip sdk-bd2af13414aa9df885c6b7e415e106771d1b8017.tar.gz sdk-bd2af13414aa9df885c6b7e415e106771d1b8017.tar.bz2 |
Use bash instead of sh because of the '[[' command
The '[[' command is not guaranteed to be present in /bin/sh, and in fact
is missing in stock Ubuntu 8.04
Diffstat (limited to 'ddms/app')
-rwxr-xr-x | ddms/app/etc/ddms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ddms/app/etc/ddms b/ddms/app/etc/ddms index 4171213..c63930b 100755 --- a/ddms/app/etc/ddms +++ b/ddms/app/etc/ddms @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Copyright 2005-2007, The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); |