• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Copyright 2020 The ChromiumOS Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6# Removes build-target config
7
8program=$1
9
10sed -i '/build_target.star/d' ./config.star ./program.star
11sed -i '/build_targets =/d' ./config.star ./program.star
12sed -i '/BUILD_TARGETS/d' ./config.star ./program.star
13./config/bin/gen_config config.star
14git add -u
15