/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.1.2
components/devtools/build.rs
20 строк
535 B
Olivier Tilloy
Devtools device description: improve how Servo is advertised in Firefox's about:debugging (fixes #27528) (#32227)
08 май 2024, 07:12
Не верифицирован
08 май 2024, 07:12
6a2e4a6
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use std::path::Path; use std::{env, fs}; use chrono::Local; fn main() { let path = Path::new(&env::var_os("OUT_DIR").unwrap()).join("build_id.rs"); fs::write( path, format!( "const BUILD_ID: &str = \"{}\";", Local::now().format("%Y%m%d%H%M%S") ), ) .unwrap(); }