OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 # Copyright 2015 The Chromium Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 # Unpacks an archive containing prebuilt instrumented libraries into output dir. | |
7 | |
8 archive_file=$1 | |
9 target_dir=$2 | |
10 stamp_file=$3 | |
11 | |
12 rm ${target_dir}/* -rf | |
13 tar -zxf ${archive_file} -C ${target_dir} | |
14 | |
15 touch ${stamp_file} | |
OLD | NEW |